crypto/tls.clientHandshakeStateTLS13.transcript (field)

30 uses

	crypto/tls (current package)
		handshake_client_tls13.go#L38: 	transcript    hash.Hash
		handshake_client_tls13.go#L66: 	hs.transcript = hs.suite.hash.New()
		handshake_client_tls13.go#L68: 	if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L103: 			hs.transcript = hs.echContext.innerTranscript
		handshake_client_tls13.go#L120: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L241: 	chHash := hs.transcript.Sum(nil)
		handshake_client_tls13.go#L242: 	hs.transcript.Reset()
		handshake_client_tls13.go#L243: 	hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
		handshake_client_tls13.go#L244: 	hs.transcript.Write(chHash)
		handshake_client_tls13.go#L245: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L391: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L517: 	clientSecret := handshakeSecret.ClientHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L519: 	serverSecret := handshakeSecret.ServerHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L549: 	msg, err := c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L631: 	msg, err := c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L640: 		msg, err = c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L692: 	signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
		handshake_client_tls13.go#L700: 	if err := transcriptMsg(certVerify, hs.transcript); err != nil {
		handshake_client_tls13.go#L724: 	expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
		handshake_client_tls13.go#L730: 	if err := transcriptMsg(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L736: 	hs.trafficSecret = hs.masterSecret.ClientApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L737: 	serverSecret := hs.masterSecret.ServerApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L751: 	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
		handshake_client_tls13.go#L764: 		if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
		handshake_client_tls13.go#L786: 	if _, err := hs.c.writeHandshakeRecord(certMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L811: 	signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
		handshake_client_tls13.go#L823: 	if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L834: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_client_tls13.go#L837: 	if _, err := hs.c.writeHandshakeRecord(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L844: 		c.resumptionSecret = hs.masterSecret.ResumptionMasterSecret(hs.transcript)